home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 #1 / Ham Radio 2000.iso / ham2000 / tcp_ip / wnos / wn941101 / config.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-31  |  2.7 KB  |  73 lines

  1. #ifndef    _CONFIG_H
  2. #define _CONFIG_H
  3.  
  4. /* Software options */
  5. #define    MAILBOX        1        /* Include SM0RGV mailbox server */
  6. #define    SERVERS        1        /* Include TCP servers */
  7. #define    TRACE        1        /* Include packet tracing code */
  8. #define    POP2_SERVER    1        /* POP2 Server  */
  9. #define    POP2_CLIENT    1        /* POP2 Client  */
  10. #define    POP3_SERVER    1        /* POP3 Server  */
  11. #define    POP3_CLIENT    1        /* POP3 Client  */
  12. #define    NNTP        1        /* Include NNTP Network News Protocol */
  13. #define CONVERS        1        /* conversd implementation - DB3FL */
  14. #undef     AXIP        1        /* AX25/IP encapsulation */
  15. #undef    LZW        1        /* LZW compression */
  16. #define    ENH        1        /* enables enhanced DOMAIN options */
  17. #undef  RLOGINCLI       1               /* rlogin for unix clients */
  18. #define IPACCESS    1        /* IP access control */
  19. #undef  TCPACCESS    1        /* TCP access control */
  20.  
  21. /* Hardware config */
  22. #define NSESSIONS    8        /* Number of interactive clients */
  23. #define DEFNSOCK    60        /* Default number of sockets */
  24. #define    MTHRESH        16384        /* Default memory threshold */
  25. #define    NROWS        25        /* Number of rows on screen */
  26. #define NCOLS        80        /* Number of cols on screen */
  27. #define    NIBUFS        20        /* Number of interrupt buffers */
  28. #define    IBUFSIZE    512         /* Size of interrupt buffers */
  29. #define ESCAPE        1        /* Allow Unix style escape on PC */
  30.  
  31. /* Hardware configuration */
  32. #undef    ARCNET        1        /* ARCnet via PACKET driver */
  33. #undef    PC_EC        1        /* 3-Com 3C501 Ethernet controller */
  34. #undef     SLIP        1        /* Serial line IP */
  35. #define    KISS        1        /* KISS TNC code */
  36. #undef  CRCSET        1        /* KISS CRC (SMACK)    */
  37. #undef    HS        1        /* High speed (56kbps) modem driver */
  38. #undef    HAPN        1        /* Hamilton Area Packet Network driver code */
  39. #undef    EAGLE        1        /* Eagle card driver */
  40. #define    PACKET        1        /* FTP Software's Packet Driver interface */
  41. #undef    PC100        1        /* PAC-COM PC-100 driver code */
  42. #undef    APPLETALK    1        /* Appletalk interface (Macintosh) */
  43. #undef    NRS        1        /* NET/ROM async interface */
  44. #undef     NETROM         1        /* NET/ROM network support */
  45. #define    DRSI        1        /* DRSI PCPA slow-speed driver */
  46. #undef  SCC                1        /* PE1CHL generic scc driver */
  47. #define    ASY        1        /* Asynch driver code */
  48. #undef    SLFP        1        /* SLFP packet driver class supported */
  49. #undef    VANESSA        1        /* Vanessa Board (HB9RWM) */
  50.  
  51. #if defined(NRS)
  52. #undef    NETROM
  53. #define    NETROM        1        /* NRS implies NETROM */
  54. #endif
  55.  
  56. #if (defined(HS)||defined(NETROM)||defined(KISS)||defined(HAPN)||defined(EAGLE)||defined(PC100)||defined(AXIP))
  57. #undef AX25
  58. #define    AX25        1        /* AX.25 subnet code */
  59. #endif
  60.  
  61. #if (defined(ARCNET) || defined(SLFP))
  62. #undef    PACKET
  63. #define    PACKET        1        /* FTP Software's Packet Driver interface */
  64. #endif
  65.  
  66. #if (defined(PC_EC) || defined(PACKET))
  67. #undef     ETHER
  68. #define    ETHER        1        /* Generic Ethernet code */
  69. #endif
  70.  
  71. #endif    /* _CONFIG_H */
  72.  
  73.